博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
完成个人中心—导航标签2
阅读量:6229 次
发布时间:2019-06-21

本文共 2804 字,大约阅读时间需要 9 分钟。

    1. 个人中心—视图函数带标签页面参数tag
      @app.route('/usercenter/<user_id>/<tag>')
      def usercenter(user_id, tag):
         if tag == ‘1':
             return render_template('usercenter1.html', **context)
    2. 个人中心—导航标签链接增加tag参数
      <li role=“presentation”><a href=“{
      { url_for(‘usercenter’,user_id = user.id,tag = ‘1’) }}">全部问答</a></li>
    3. 个人中心—有链接到个人中心页面的url增加tag参数
      u <a href="{
      { url_for('usercenter',user_id = session.get('userid'), tag=1) }}">{
      { session.get('user') }}</a>
    4. @app.route('/usercenter/
      /
      ')def usercenter(user_id,tag): user = User.query.filter(User.id == user_id).first() context = { 'usern': user.id, 'username': user.username, 'fankui':user.fankui, 'comment':user.comment } if tag =='1': return render_template('usercenter1.html',**context) elif tag == '2': return render_template('usercenter2.html', **context) else: return render_template('usercenter3.html', **context)

       

    5. {% extends'danghangye.html' %}{% block title %}个人中心{% endblock %}{% block head %}{% endblock %}{% block main %}    
      {% block usercenter %}{% endblock %}{% endblock %}
                              {% block head %}{% endblock %}            
      {% block title %}{% endblock %}首页
      {% block main %}

      {

      {username}}请登录

      {% for foo in fankui %}
    6. {
      {foo.author.username}}评论({
      {foo.comment|length}})
      {
      {foo.biaoti}}
      {
      {foo.creat_time}}

      {

      {foo.questionDetail}}

    7. {% endfor %}
      {% endblock %}

       

转载于:https://www.cnblogs.com/cyj5201314/p/8041485.html

你可能感兴趣的文章
✨HeyUI新组件:TextEllipsis多行省略✨✨
查看>>
我所理解的接口设计
查看>>
android studio ndk/so笔记
查看>>
计算机程序的思维逻辑 (42) - 排序二叉树
查看>>
Spark Streaming入门
查看>>
我的阿里之路——阿里实习offer+校招offer|掘金技术征文
查看>>
手撸一款第三方链克钱包
查看>>
Mysql Trigger
查看>>
Android 刷脸登录功能初探
查看>>
View 绘制体系知识梳理(3) 绘制流程之 Measure 详解
查看>>
React事件处理
查看>>
金三银四跳槽季,Java面试大纲
查看>>
iOS A B Test 方案探索
查看>>
算法与数据结构之图的表示与遍历
查看>>
js定时器,你所要了解的那点事
查看>>
TCP/IP模型
查看>>
聊聊rocketmq的FileAppender
查看>>
navigationbar闪现黑条,白条问题
查看>>
草根学Python(十六) 装饰器(逐步演化成装饰器)
查看>>
解决 mysql 本地无法登陆 | 便捷安装
查看>>